home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
c
/
etc
/
RCS
/
ftime.c,v
< prev
next >
Wrap
Text File
|
1989-03-05
|
1KB
|
79 lines
head 1.2;
branch ;
access ;
symbols ;
locks ; strict;
comment @ * @;
1.2
date 89.03.05.14.42.51; author douglis; state Exp;
branches ;
next 1.1;
1.1
date 89.03.05.14.42.16; author douglis; state Exp;
branches ;
next ;
desc
@baseline from monet (4.1BSD compat).
@
1.2
log
@fixed some lint
@
text
@/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@@(#)ftime.c 5.2 (Berkeley) 3/9/86";
#endif LIBC_SCCS and not lint
#include <sys/types.h>
#include <sys/time.h>
/*
* Backwards compatible ftime.
*/
/* from old timeb.h */
struct timeb {
time_t time;
u_short millitm;
short timezone;
short dstflag;
};
ftime(tp)
register struct timeb *tp;
{
struct timeval t;
struct timezone tz;
if (gettimeofday(&t, &tz) < 0)
return (-1);
tp->time = t.tv_sec;
tp->millitm = t.tv_usec / 1000;
tp->timezone = tz.tz_minuteswest;
tp->dstflag = tz.tz_dsttime;
return(0);
}
@
1.1
log
@Initial revision
@
text
@d38 1
@